﻿.secATMSBtn {
    display: flex;
    border-radius: 5px;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    background-color: #1b1b1b;
    color: white;
    margin-left: 3px;
    justify-content: center;
    height:37px;
}
:root[data-bs-theme='light'] .secATMSBtn {
    background-color: #1b1b1b;
    color: white;
}

:root[data-bs-theme='dark'] .secATMSBtn {
    /*//background-color: #6359E9;*/
    background: #6359E9;
    color: white; /* Light text color */
}
:root[data-bs-theme='light'] .custom-view-button {
    background-color: #fff;
    color: black;
}


:root[data-bs-theme='dark'] .custom-view-button {
    /* background-color: #6359E9;*/
    background: #2d2d2d;
    color: white; /* Light text color */
}
.custom-view-button {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000; /* Black text */
    background-color: #fff;
    border: 1px solid #d1d5db; /* Light gray border */
    border-radius: 11px; /* Pill shape */
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
    white-space: nowrap; /* Prevent text wrapping */
}

    .custom-view-button:hover {
        background-color: #f3f4f6; /* Light hover effect */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }



.modal-title {
    font-size: 1.25rem;
    font-weight: bold;
    /*color: #021526;*/
    font-family: 'Poppins', sans-serif;
}
/* Form Controls */
.form-control, .form-select {
    max-width: 100%;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    font-size: 0.875rem;
    padding: 10px 15px;
    height: 40px;
    font-family: 'Poppins', sans-serif;
}

    .form-control:hover {
        border: 1px solid #f2f2f2; /* Hover border color */
    }

option {
    font-size: 0.75rem;
    font-weight: 300;
    /* color: #373b3E;*/
    font-family: 'Poppins', sans-serif;
}
/* Headings */
.h5 {
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
.h6 {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}
/* ---------- TABLE HEADER ---------- */
.table thead th {
    font-size: 14px; /* Header font size */
    font-weight: 600;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
}
/* ---------- TABLE BODY ---------- */
.table tbody td {
    font-size: 14px; /* Body font size */
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
    /* ---------- ROW HOVER EFFECT ---------- */
    .table-hover tbody tr:hover {
        transition: 0.15s ease-in-out;
    }
}






::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* Firefox */
* {
    scrollbar-width: none;
}

/* IE / old Edge */
* {
    -ms-overflow-style: none;
}